home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Developer Toolbox 6.1
/
SGI Developer Toolbox 6.1 - Disc 4.iso
/
src
/
demos
/
REALITY
/
fastshadows
/
Makefile
< prev
next >
Wrap
Makefile
|
1994-08-01
|
317b
|
19 lines
#!smake
#
# Makefile for 'shad' program
#
include ${ROOT}/usr/include/make/commondefs
TARGETS = shad
LCOPTS = -O -prototypes -float
LLDLIBS = -limage -lgl -lm
CFILES = shad.c sgiobjgl.c glshade.c matrix.c
default all: $(TARGETS)
include ${COMMONRULES}
$(TARGETS): $(OBJECTS)
$(CCF) -o $@ $(OBJECTS) $(LDFLAGS)